-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update openvino-mlir-gc integration #167
base: mlir
Are you sure you want to change the base?
Conversation
@niuxiaog could you please briefly describe what this PR does? |
For a more complete introduction of constant tensors folding pass, please refer to RFC. |
const auto inputs = context.getInputs(node); | ||
mlir::SmallVector<Value, 2> ins{inputs[0]}; | ||
|
||
if (isTransposedB) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need to split it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is experimental code to test that the TransposeOp
can be moved to fold()
by the constant tensor folding
pass. It will be deleted later.
No description provided.